home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib25 / mntlib25.zoo / abs.c < prev    next >
C/C++ Source or Header  |  1992-09-05  |  154b  |  11 lines

  1. /* return absolute values */
  2. #include <stdlib.h>
  3.  
  4. int abs(x)
  5. int x;
  6. { return x < 0 ? -x : x; }
  7.  
  8. long labs(x)
  9. long x;
  10. { return x < 0 ? -x : x; }
  11.